<?php
/**
 * @package WordPress
 * @subpackage M+M
 */
get_header();
?>

<?php if(is_front_page()) {
echo '<div class="infobox0">';
$my_query = new WP_Query();
        $my_query->query('showposts=1&orderby=date');
        if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
         <div style="padding: 5px 10px;">
           <i>Aktuell:</i> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>  
         </div>  

<?php
         endwhile; endif;
echo '</div>';
} ?>


<?php if (have_posts()) : while (have_posts()) : the_post(); ?>



<div class="post">
         <h2><?php the_title(); ?></h2>
         <div class="postcontent">
                <?php the_content(__('(more...)')); ?>
         </div>
</div>

<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php if(is_front_page()) {
echo '<div class="infobox"><h3>News</h3>';
$my_query = new WP_Query();
        $my_query->query('showposts=3&orderby=date');
        if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="content">
 <div class="post">
         <h2><?php the_title(); ?></h2>
         <div class="postcontent">
                <?php the_content(__('(more...)')); ?>
         </div>
        
</div>
</div>
<?php
         endwhile; endif;
echo '</div>';
} ?>
 <?php if ( function_exists('fb_paging_bar') ) fb_paging_bar(); ?> 

<?php get_footer(); ?>